home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Interactive 7
/
PC World Interactive 7.iso
/
program
/
cprog.EXE
/
CC_1.ZIP
/
TOLOWER.C
< prev
next >
Wrap
Text File
|
1980-01-10
|
384b
|
8 lines
/*
** if character is upper case, convert to lower case
*/
tolower(c) char c; {
if(c >= 'A' && c <= 'Z') return (c + ('a' - 'A'));
return c;
}